From 198c0be5e7969b95b62386769468cda1a129bd5b Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 25 Feb 2021 11:25:05 +0000 Subject: [PATCH] flowbow: Mark private fields as private --- gtk/gtkflowbox.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/gtkflowbox.h b/gtk/gtkflowbox.h index 1b8f811553..d620bc4c6d 100644 --- a/gtk/gtkflowbox.h +++ b/gtk/gtkflowbox.h @@ -51,15 +51,19 @@ typedef struct _GtkFlowBoxChildClass GtkFlowBoxChildClass; struct _GtkFlowBoxChild { + /*< private >*/ GtkWidget parent_instance; }; struct _GtkFlowBoxChildClass { + /*< private >*/ GtkWidgetClass parent_class; + /*< public >*/ void (* activate) (GtkFlowBoxChild *child); + /*< private >*/ gpointer padding[8]; }; -- 2.30.2